@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

header {
  width: 100%;
  height: 12vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999999;
  transition: 0.3s ease-in-out;
}
header .header-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: absolute;
  top: 9.9vh;
  right: 0;
  width: 30vw;
  height: 100vh;
  background-color: #ffffff;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.45s ease-in-out;
}
header .header-links a {
  text-decoration: none;
  font-size: 15pt;
  color: #000 !important;
  font-weight: 600;
}
header .header-links .button {
  display: none;
  text-decoration: none;
  padding: 1vh 3vh 1vh 3vh;
  border-radius: 20px;
  gap: 1vh;
  transition: 0.3s ease-in-out;
  color: #fff !important;
}
header .header-links .button img {
  filter: invert(100);
}
header .header-links .button:hover {
  opacity: 0.9;
}
header .header-links #zapzap {
  background-color: #24a724;
}
header .header-links #suporte {
  background-color: #4561d1;
}
header .menu-h {
  width: 1%;
}
header .header-div2 {
  width: 37.5%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-links-2 {
  width: 35%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
header .header-menu-h {
  display: none;
  align-items: center;
  justify-content: center;
}
header #menu-h {
  position: absolute;
  opacity: 0;
}
header label {
  cursor: pointer;
  position: absolute;
  display: block;
  width: 28px;
  height: 20px;
}
header label span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  border-radius: 30px;
  background-color: #4561d1;
  transition: 0.25s ease-in-out;
}
header label span:nth-child(1) {
  top: 0;
}
header label span:nth-child(2) {
  top: 8px;
}
header label span:nth-child(3) {
  top: 16px;
}
header #menu-h:checked + label span:nth-child(1) {
  transform: rotate(-45deg);
  top: 8px;
}
header #menu-h:checked + label span:nth-child(2) {
  opacity: 0;
}
header #menu-h:checked + label span:nth-child(3) {
  transform: rotate(45deg);
  top: 8px;
}
header #menu-h:checked {
  transform: translateX(0);
}
header .logo {
  width: 33.33%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0 0 0 3vh;
}
header .logo #branco {
  display: flex;
}
header .logo #normal {
  display: none;
}
header .buttons {
  width: 33.33%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vh;
}
header .buttons a {
  text-decoration: none;
  color: #ffffff;
  padding: 1vh 3vh 1vh 3vh;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vh;
  transition: 0.3s ease-in-out;
}
header .buttons a:hover {
  opacity: 0.9;
}
header .buttons #suporte {
  background-color: #4561d1;
}
header .buttons #suporte img {
  filter: invert(100);
}
header .buttons #zapzap {
  background-color: #24a724;
}
header .buttons #zapzap img {
  filter: invert(100);
}
header .links {
  width: 33.33%;
  height: 100%;
}
header .links nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 2vh;
  padding: 0 3vh 0 0;
}
header .links nav a {
  text-decoration: none;
  font-size: 13pt;
  color: #fff;
  position: relative;
}
header .links nav a::after {
  content: " ";
  width: 0%;
  height: 2px;
  background-color: #4561d1;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
header .links nav a:hover {
  color: #4561d1 !important;
}
header .links nav a:hover::after {
  width: 100%;
}

footer {
  width: 100%;
  height: auto;
}
footer .div1 {
  width: 100%;
  height: 30vh;
  padding: 0 12vh 0 12vh;
}
footer .div1 .content {
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3vh 0 3vh;
}
footer .div1 .content .infos {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 3vh;
}
footer .div1 .content .infos span {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1vh;
  font-size: 11pt;
  color: #202020;
}
footer .div1 .content .infos span img {
  opacity: 0.9;
}
footer .div1 .content .infos span a {
  text-decoration: none;
  color: #202020;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
footer .div1 .content .infos span a:hover {
  color: #4561d1;
}
footer .div1 .content .logo {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
footer .div2 {
  width: 100%;
  height: 7vh;
  background: #4561d1;
  display: grid;
  place-items: center;
  text-align: center;
}
footer .div2 p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
}
footer .div2 p span {
  color: #ff2727;
}
footer .div2 p a {
  display: grid;
  place-items: center;
  text-decoration: none;
}
footer .div2 p a img {
  filter: brightness(0) saturate(100%) invert(1);
  transition: 0.2s ease-in-out;
}
footer .div2 p a img:hover {
  opacity: 0.6;
}

.zapzap {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background-color: green;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.zapzap img {
  filter: invert(100);
}

::selection {
  background-color: rgba(89, 122, 253, 0.3960784314);
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #4561d1;
  border: 0px;
  border-radius: 3px;
}

.ativo {
  height: 10vh;
  background: #ffffff;
  box-shadow: 0px 6px 15px -10px #000000;
}
.ativo .logo a #normal {
  display: flex;
}
.ativo .logo a #branco {
  display: none;
}
.ativo .links a {
  color: #000;
}

@media (max-width: 1250px) {
  header .logo {
    width: 20%;
  }
  header .buttons {
    width: 70%;
  }
  header .links {
    width: 10%;
  }
  header .links nav #link {
    display: none;
  }
  header .links nav {
    display: none;
  }
  header .links .header-menu-h {
    width: 10vh;
    height: 10vh;
    display: grid;
    place-items: center;
  }
}

@media (max-width: 900px) {
  footer {
    height: auto;
  }
  footer .div1 {
    height: auto;
    padding: 0 10vh 5vh 10vh;
  }
  footer .div1 .content {
    height: auto;
    flex-direction: column-reverse !important;
  }
  footer .div1 .content .infos {
    width: 100%;
    height: 50%;
  }
  footer .div1 .content .logo {
    width: 100%;
    height: 20vh;
    justify-content: left;
  }
}

@media (max-width: 700px) {
  header .logo {
    width: 80%;
  }
  header .buttons {
    display: none !important;
    width: 0%;
  }
  header .links {
    width: 20%;
  }
  header .links .header-links {
    padding-bottom: 10vh;
    width: 40vw;
  }
  header .links .header-links .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
  }
}

@media (max-width: 550px) {
  footer .div1 {
    padding: 0 5vh 5vh 5vh;
  }
}

@media (max-width: 480px) {
  header .links .header-links {
    width: 50vw;
  }

  footer .div1 {
    padding: 0 2vh 5vh 2vh !important;
  }
}

@media (max-width: 425px) {
  header .links .header-links {
    width: 65vw;
  }

  footer .div1 .content .infos span {
    font-size: 10pt;
  }
}